home *** CD-ROM | disk | FTP | other *** search
/ Programming Windows 95 with MFC / Programming Windows 95 with MFC (Microsoft Programming Series)(097-0001465)(1996).iso / CODE / Chap01 / Hello.h < prev    next >
C/C++ Source or Header  |  1996-04-05  |  404b  |  22 lines

  1. //***********************************************************************
  2. //
  3. //  Hello.h
  4. //
  5. //***********************************************************************
  6.  
  7. class CMyApp : public CWinApp
  8. {
  9. public:
  10.     virtual BOOL InitInstance ();
  11. };
  12.  
  13. class CMainWindow : public CFrameWnd
  14. {
  15. public:
  16.     CMainWindow ();
  17.  
  18. protected:
  19.     afx_msg void OnPaint ();
  20.     DECLARE_MESSAGE_MAP ()
  21. };
  22.